home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / ACCEPT.C < prev    next >
Encoding:
Text File  |  1989-07-29  |  235 b   |  12 lines

  1. int  GetLine( char *s, int len, int start );
  2. void Say( char *s );
  3.  
  4. #include <conio.h>
  5.  
  6. void Accept( int x, int y, char *Prompt, char *Buffer, int Length )
  7. {
  8.     gotoxy( x, y );
  9.     Say( Prompt );
  10.     GetLine( Buffer, Length, 0 );
  11. }
  12.